home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem Here's a quick BAT file for anyone who can't be bothered typing the blurb
- rem when they want to play Oblivion.
- echo O.K. loading Doom with Oblivion!
- echo ...
- echo ..
- echo .
- if not exist oblivion.wad goto no_wad
- if not exist doom.wad goto no_doom
- doom -file oblivion.wad
- goto end
-
- :no_wad
- echo I can't find OBLIVION.WAD! Make sure it's in your Doom directory.
- goto end
-
- :no_doom
- echo There ain't no Doom WAD! You must have all obilvion.wad and oblivion.bat
- echo in your Doom directory to run them.
-
- :end
-